home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue54 / Persist / tiPatterns.dpk < prev    next >
Encoding:
Text File  |  2000-01-07  |  747 b   |  42 lines

  1. package tiPatterns;
  2.  
  3. {$R *.RES}
  4. {$ALIGN ON}
  5. {$ASSERTIONS ON}
  6. {$BOOLEVAL OFF}
  7. {$DEBUGINFO ON}
  8. {$EXTENDEDSYNTAX ON}
  9. {$IMPORTEDDATA ON}
  10. {$IOCHECKS ON}
  11. {$LOCALSYMBOLS ON}
  12. {$LONGSTRINGS ON}
  13. {$OPENSTRINGS ON}
  14. {$OPTIMIZATION ON}
  15. {$OVERFLOWCHECKS OFF}
  16. {$RANGECHECKS OFF}
  17. {$REFERENCEINFO ON}
  18. {$SAFEDIVIDE OFF}
  19. {$STACKFRAMES OFF}
  20. {$TYPEDADDRESS OFF}
  21. {$VARSTRINGCHECKS ON}
  22. {$WRITEABLECONST ON}
  23. {$MINENUMSIZE 1}
  24. {$IMAGEBASE $400000}
  25. {$IMPLICITBUILD OFF}
  26.  
  27. requires
  28.   VCL50,
  29.   VCLX50,
  30.   VCLDB50,
  31.   VCLSMP50,
  32.   VCLBDE50;
  33.  
  34. contains
  35.   tiRegCtrls in 'tiRegCtrls.pas',
  36.   tiTreeView in 'tiTreeView.pas',
  37.   tiListView in 'tiListView.pas',
  38.   tiTreeViewPlus in 'tiTreeViewPlus.pas',
  39.   tiButtonPanel in 'tiButtonPanel.pas';
  40.  
  41. end.
  42.